介紹四種陣列運用:
const num = [ 1 , 2 , 3 , 7 , 8 , 9 ]
const newNum = num.find(function(item){
return item >= 5;
})
console.log(newNum);
如圖所示找出大於5的值,理論會印出7、8、9這三個值,但
使用 find 只會找尋出符合條件的第一筆資料。
const colors = [ "red" , "black" , "white" , "blue" ]
const color = colors.findIndex(function(item){
return item == "black";
})
console.log(color);
如圖所示使用 findIndex 找出符合條件的資料索引。
回傳的值為 1 ,陣列 0 為排序第一個, 1 為排序第二個。
今天到此結束。